home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-02-05 | 566 b | 31 lines | [TEXT/MPS ] |
- // UAEServerCommand.h
- // Copyright © 1991-92 Apple Computer, Inc. All rights reserved.
- // Kent Sandvik DTS
- // This file contains the TAEServerCommand class, used to
- // serve the incoming Apple event with needed information
- //
- // <1> khs 1.0 First final version
-
-
- #ifndef __UAESERVERCOMMAND__
- #define __UAESERVERCOMMAND__
-
- #ifndef __UAEGESTALT__
- #include "UAEGestalt.h"
- #endif
-
- DeclareClassDesc(TAEServerCommand);
-
- class TAEServerCommand : public TServerCommand
- {
-
- DeclareClass(TAEServerCommand);
-
- public:
- TAEServerCommand();
- virtual void DoIt();
- };
-
- #endif
-
-